home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (C) 1990-1992 Michael Davidson.
- * All rights reserved.
- *
- * Permission to use, copy, modify, and distribute this software
- * and its documentation for any purpose and without fee is hereby
- * granted, provided that the above copyright notice appear in all
- * copies and that both that copyright notice and this permission
- * notice appear in supporting documentation.
- *
- * This software is provided "as is" without express or implied warranty.
- */
-
- #ifndef VBIOS_H
- #define VBIOS_H
-
- int VBiosInit();
-
- void VBiosINT10();
-
- void * VBiosGetFontInfo(int code);
- int VBiosDisableBlink();
- int VBiosSetCursorPosition(int x, int y);
- int VBiosSetMode(int mode);
- int VBiosGetMode();
-
- #define VBIOS_SEG 0x1000
-
- #endif /* VBIOS_H */
-